Shared coding conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.
Noncompliant code example
With default provided regular expression: ^([A-Z0-9_]*|[a-z0-9_]*)$
FUNCTION MyFunction.
...
ENDFUNCTION.
Compliant solution
FUNCTION MY_FUNCTION.
...
ENDFUNCTION.